1 CREATE PROCEDURE [dbo].[UpdateTravel]
2 @PartitionKey nvarchar(200),
3 @RowKey uniqueidentifier,
5 @GeoLocation NVarchar(max),
11 [GeoLocation] = Geography::STGeomFromText(@GeoLocation, 4326),
13 Where PartitionKey = @PartitionKey AND RowKey = @RowKey